/* YOUR CUSTOM CSS */

#doctors_table thead th:first-child, #doctors_table tfoot th:first-child, #doctors_table tbody td:first-child{
    text-align: left;
}
#doctors_table thead th:last-child, #doctors_table tfoot th:last-child , #doctors_table tbody td:last-child{
    text-align: right;
}
#doctors_table thead th , #doctors_table tfoot th, #doctors_table tbody td{
    text-align: center;
}
.dropify-wrapper
{
    border-radius: 0.25rem !important;
    border: 1px solid #ced4da !important;
}
.fa-mars{
 color: dodgerblue;
}
.fa-venus{
    color: deeppink;
}

.app {
    max-width: 800px;
    margin: 0 auto;
}

.app i {
    font-size: 80px;
    animation-duration: 3s;
    animation-name: slidein;
    animation-iteration-count: 1;
}

article {
    position: relative;
    width: 200px;
    height: 130px;
    margin: 10px;
    float: left;
    border: 2px solid #171a1d;
    box-sizing: border-box;
}

article div {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 25px;
    transition: .5s ease;
}
article span {
    text-align: center;
    padding: 5px;
    color:#171a1d;
}

article input {
    position: absolute;
    top: 0;
    left: 0;
    width: 140px;
    height: 100px;
    opacity: 0;
    cursor: pointer;
}

input[type=checkbox]:checked ~ div {
    background-color: #212529;
}
input[type=checkbox]:checked ~ div span {
    color: #ffffff;
}

.upgrade-btn {
    display: block;
    margin: 30px auto;
    width: 200px;
    padding: 10px 20px;
    border: 2px solid #50bcf2;
    border-radius: 50px;
    color: #f5f5f5;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s ease;
}

.upgrade-btn:hover {
    background-color: #50bcf2;
}

.blue-color {
    color: #50bcf2;
}

.gray-color {
    color: #555;
}

.social i:before {
    width: 14px;
    height: 14px;
    position: fixed;
    color: #fff;
    background: #0077B5;
    padding: 10px;
    border-radius: 50%;
    top:5px;
    right:5px;
}
span.select2-selection.select2-selection--multiple{
    min-height: 44px;
    border: solid #ced4da 1px;
}
.select2-container--default.select2-container--focus .select2-selection--multiple{
    border: solid #80bdff 1px !important;
}
span.select2-selection.select2-selection--multiple:focus{
    border: solid #80bdff 1px;
}

@keyframes slidein {
    from {
        margin-top: 100%;
        width: 300%;
    }

    to {
        margin: 0%;
        width: 100%;
    }
}

/*==================================================================
                            CHATING STYLING
    ==================================================================*/
.chat__box ul
{
    list-style: none;
    padding: 10px;
    height: 70vh;
    overflow: auto;
}

.chat__box ul::-webkit-scrollbar {
    width: 10px;
}

.chat__box ul::-webkit-scrollbar-track {
    background: #fff;
}

.chat__box ul::-webkit-scrollbar-thumb {
    background: #888;
}

.chat__box ul::-webkit-scrollbar-thumb:hover {
    background: #555;
}



.chat__box ul li p
{
    padding: 6px;
    border-radius: 4px;
}
.chat__box ul li
{
    margin-bottom: 14px;
    width: 50%;
}

.chat__box ul li em
{
    font-size: 12px;
    display: block;
    border-top: 1px solid;
    opacity: 0.6;
}

.msg-right
{
    display: flex;
    flex-shrink: 0;
    flex-direction: row-reverse;
    margin-left: auto;
    color: #fff;
}
.msg-left
{
    display: flex;
    flex-shrink: 0;
    margin-right: auto;
    color: #000;
}


.msg-right p
{
    background-color: #0084FF;
    color: #fff;
}
.msg-left p
{
    background-color: #E4E6EB;
    color: #000;
}

.chat__input *
{
    border-radius: 0px;
}

.chat__box button
{
    background: #0084FF;
    color: #fff;
    height: 50px;
}

.chat__box input
{
    height: 50px;
    resize: none;
}
